热加载调试 Hot Reload
Gin 原生不支持,但有很多额外的库可以支持。例如
github.com/codegangsta/gin github.com/pilu/fresh 这次,我们采用 github.com/pilu/fresh 。
1 go get -v -u github.com/pilu/fresh 安装好后,只需要将go run main.go命令换成fresh即可。每次更改源文件,代码将自动重新编译(Auto Compile)。
参考 github.com/pilu/fresh - Github